|
In graph theory, a tree decomposition is a mapping of a graph into a tree that can be used to define the treewidth of the graph and speed up solving certain computational problems on the graph. In machine learning, tree decompositions are also called junction trees, clique trees, or join trees; they play an important role in problems like probabilistic inference, constraint satisfaction, query optimization, and matrix decomposition. The concept of tree decompositions was originally introduced by . Later it was rediscovered by and has since been studied by many other authors.〔 pp.354–355〕 ==Definition== Intuitively, a tree decomposition represents the vertices of a given graph ''G'' as subtrees of a tree, in such a way that vertices in the given graph are adjacent only when the corresponding subtrees intersect. Thus, ''G'' forms a subgraph of the intersection graph of the subtrees. The full intersection graph is a chordal graph. Each subtree associates a graph vertex with a set of tree nodes. To define this formally, we represent each tree node as the set of vertices associated with it. Thus, given a graph ''G'' = (''V'', ''E''), a tree decomposition is a pair (''X'', ''T''), where ''X'' = is a family of subsets of ''V'', and ''T'' is a tree whose nodes are the subsets ''X''''i'', satisfying the following properties:〔 section 12.3〕 # The union of all sets ''X''''i'' equals ''V''. That is, each graph vertex is associated with at least one tree node. # For every edge (''v'', ''w'') in the graph, there is a subset ''X''''i'' that contains both ''v'' and ''w''. That is, vertices are adjacent in the graph only when the corresponding subtrees have a node in common. # If ''X''''i'' and ''X''''j'' both contain a vertex ''v'', then all nodes ''X''''k'' of the tree in the (unique) path between ''X''''i'' and ''X''''j'' contain ''v'' as well. That is, the nodes associated with vertex ''v'' form a connected subset of ''T''. This is also known as coherence, or the ''running intersection property''. It can be stated equivalently that if , and are nodes, and is on the path from to , then . The tree decomposition of a graph is far from unique; for example, a trivial tree decomposition contains all vertices of the graph in its single root node. A tree decomposition in which the underlying tree is a path graph is called a path decomposition, and the width parameter derived from these special types of tree decompositions is known as pathwidth. A tree decomposition (''X'', ''T'' = (''I'', ''F'')) of treewidth ''k'' is ''smooth'', if for all , and for all .〔.〕 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「tree decomposition」の詳細全文を読む スポンサード リンク
|